go/types.tpWalker.varList (method)

5 uses

	go/types (current package)
		infer.go#L585: 		return w.varList(t.fields)
		infer.go#L596: 		return t != nil && w.varList(t.vars)
		infer.go#L606: 		return t.params != nil && w.varList(t.params.vars) || t.results != nil && w.varList(t.results.vars)
		infer.go#L642: func (w *tpWalker) varList(list []*Var) bool {